home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #16 / 2001 CD 16 (Black).iso / K-CS.DCR / 00249_JetCar Special.ls < prev    next >
Encoding:
Text File  |  2001-10-25  |  1.6 KB  |  55 lines

  1. property MySprite
  2. global BlinkObjekt
  3.  
  4. on new me
  5.   cursor(0)
  6.   startTimer()
  7.   set MyTimer to 0
  8.   set BlinkObject to 0
  9.   set the locH of sprite 99 to 780
  10.   set BlinkObjekt to new(script "Blink", 4, 80)
  11.   repeat with MySprite = 62 to 69
  12.     set the visible of sprite MySprite to 0
  13.     set the visible of sprite (MySprite + 8) to 0
  14.     set the visible of sprite (MySprite + 16) to 0
  15.     set the visible of sprite (MySprite + 24) to 0
  16.   end repeat
  17.   set MySprite to 0
  18. end
  19.  
  20. on exitFrame
  21.   checkBlink(BlinkObjekt)
  22.   if the timer > 10 then
  23.     set NewPos to the locH of sprite 100 + 10
  24.     if NewPos > 365 then
  25.       if the locV of sprite 100 > 315 then
  26.         go(#next)
  27.       else
  28.         set NewPos to 269
  29.         set VPos to the locV of sprite 100 + 11
  30.         set the locV of sprite 100 to VPos
  31.         set the locV of sprite 101 to VPos + 22
  32.         set the locV of sprite 102 to VPos + 44
  33.         set the locV of sprite 103 to VPos + 66
  34.       end if
  35.     end if
  36.     if the locV of sprite 100 <= 315 then
  37.       set the locH of sprite 100 to NewPos
  38.       set the locH of sprite 101 to NewPos
  39.       set the locH of sprite 102 to NewPos
  40.       set the locH of sprite 103 to NewPos
  41.       set the visible of sprite ((MySprite / 3) + 62) to 1
  42.       set the visible of sprite ((MySprite / 3) + 70) to 1
  43.       set the visible of sprite ((MySprite / 3) + 78) to 1
  44.       set the visible of sprite ((MySprite / 3) + 86) to 1
  45.       updateStage()
  46.       set MySprite to MySprite + 1
  47.       if MySprite = 10 then
  48.         set MySprite to 12
  49.       end if
  50.       startTimer()
  51.     end if
  52.   end if
  53.   go(#loop)
  54. end
  55.